Component org.nuxeo.drive.service.impl.NuxeoDriveManagerImpl
In bundle org.nuxeo.drive.core
Documentation
The NuxeoDriveManager provides simple API to manage the list of folderish documents to be used as synchronization root with a local filesystem folder of the Desktop computer of a user.
Implementation
Class:
org.nuxeo.drive.service.impl.NuxeoDriveManagerImpl
Services
Extension Points
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.drive.service.impl.NuxeoDriveManagerImpl"
version="1.0">
<require>org.nuxeo.ecm.core.cache.CacheService</require>
<implementation class="org.nuxeo.drive.service.impl.NuxeoDriveManagerImpl" />
<service>
<provide interface="org.nuxeo.drive.service.NuxeoDriveManager" />
</service>
<documentation>
The NuxeoDriveManager provides simple API to manage the
list of folderish documents to be used as synchronization root with a
local filesystem folder of the Desktop computer of a user.
</documentation>
<extension-point name="changeFinder">
<documentation>
@author Antoine Taillefer (ataillefer@nuxeo.com)
@since 7.3
This extension point lets you contribute the change finder used by the NuxeoDriveManager.
Example of the AuditChangeFinder:
<code>
<extension
target="org.nuxeo.drive.service.impl.NuxeoDriveManagerImpl"
point="changeFinder">
<changeFinder class="org.nuxeo.drive.service.impl.AuditChangeFinder" />
</extension>
</code>
</documentation>
<object class="org.nuxeo.drive.service.impl.ChangeFinderDescriptor" />
</extension-point>
</component>